home *** CD-ROM | disk | FTP | other *** search
/ Skunkware 5 / Skunkware 5.iso / src / X11 / xarchie-2.0.9 / xutil.h < prev   
C/C++ Source or Header  |  1995-06-18  |  557b  |  40 lines

  1. /*
  2.  * xutil.h : Miscellaneous X functions
  3.  *
  4.  * George Ferguson, ferguson@cs.rochester.edu, 23 Apr 1993.
  5.  */
  6.  
  7. extern void setWidgetString(
  8. #if NeedFunctionPrototypes
  9.     Widget w,
  10.     char *str
  11. #endif
  12. );
  13.  
  14. extern void setWidgetLabel(
  15. #if NeedFunctionPrototypes
  16.     Widget w,
  17.     char *str
  18. #endif
  19. );
  20.  
  21. extern char *getWidgetString(
  22. #if NeedFunctionPrototypes
  23.     Widget w
  24. #endif
  25. );
  26.  
  27. extern char *getWidgetLabel(
  28. #if NeedFunctionPrototypes
  29.     Widget w
  30. #endif
  31. );
  32.  
  33. extern void appendWidgetText(
  34. #if NeedFunctionPrototypes
  35.     Widget w,
  36.     char *text
  37. #endif
  38. );
  39.  
  40.